home *** CD-ROM | disk | FTP | other *** search
/ Amiga CD-Sensation: Golden Games / Amiga CD-Sensation - Ausgabe 2 - Golden Games (1996)(GTI - Schatztruhe)(DE)[!].iso / Various / Tiles / TilesScreen.def < prev    next >
Text File  |  1989-08-27  |  471b  |  26 lines

  1. DEFINITION MODULE TilesScreen;
  2. (*
  3. This module initializes the window and screen for
  4. the trails program.
  5.  
  6. Created: 5/24/86 by Richie Bielak
  7.  
  8. Modified:
  9.  
  10. Copyright (c) 1986 by Richard Bielak
  11.  
  12. This program maybe freely copied. But please
  13. leave my name in. Thanks.....Richie
  14.  
  15. Turned into TilesScreen by Todd Lewis in 1988.  Thanks alot, Richie!
  16. *)
  17. FROM Intuition IMPORT WindowPtr, ScreenPtr;
  18.  
  19. VAR wp : WindowPtr;
  20.     sp : ScreenPtr;
  21.  
  22. PROCEDURE SetUpScreen;
  23.  
  24. END TilesScreen.
  25.  
  26.